home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / CDTools / MUIRexx / demos / MUIRexxDock / about.rexx next >
OS/2 REXX Batch file  |  1997-03-29  |  973b  |  30 lines

  1. /* Application created by MUIBuild */
  2.  
  3. address DOCK
  4.  
  5. MUIA_Background  = 0x8042545b
  6. MUIA_ControlChar = 0x8042120b
  7. MUIA_Frame  = 0x8042ac64
  8. MUIA_Text_HiChar = 0x804218ff
  9. MUIA_Window_DepthGadget  = 0x80421923
  10. MUIA_Window_DragBar  = 0x8042045d
  11. MUIA_Window_SizeGadget  = 0x8042e33d
  12.  
  13. MUII_WindowBack  = 0
  14. MUIV_Frame_None  = 0
  15. FALSE = 0
  16.  
  17. AboutWindow = "window ID ABOUT"
  18.  
  19. AboutWindow ATTRS MUIA_Window_DepthGadget FALSE MUIA_Window_DragBar FALSE MUIA_Window_SizeGadget FALSE
  20.  group HORIZ
  21.   button PICT "MUIREXX:demos/muirexx.brush" TRANS ATTRS MUIA_Background MUII_WindowBack MUIA_Frame MUIV_Frame_None
  22.   text ATTRS MUIA_Background MUII_WindowBack MUIA_Frame MUIV_Frame_None LABEL "This is a MUIRexx application for\nbuilding and maintaining Docks!\nThis is a preliminary release."
  23.  endgroup
  24.  group HORIZ
  25.   space HORIZ
  26.   button PRESS COMMAND """"AboutWindow" CLOSE""" PORT DOCK ATTRS MUIA_Text_HiChar c2d('O') MUIA_ControlChar c2d('o') LABEL "Ok"
  27.   space HORIZ
  28.  endgroup
  29. endwindow
  30.